home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 25 / CU Amiga Magazine's Super CD-ROM 25 (1998)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1998-08].iso / AudioSpecial / MakeCD / Goodies / Brik / makefile.amiga < prev    next >
Makefile  |  1995-08-06  |  461b  |  22 lines

  1. # Makefile for brik (Amiga version, Lattice C)
  2. # Please see brik.h for configuration options.
  3.  
  4. CFLAGS =    -DAMIGA=1 -c
  5. CC =        dcc
  6. OBJS =        addbfcrc.o brik.o getopt.o initcrc.o
  7.  
  8. brik:        $(OBJS)
  9.         dcc brik.o addbfcrc.o getopt.o initcrc.o -o brik
  10.  
  11. addbfcrc.o:    addbfcrc.c
  12.         $(CC) $(CFLAGS) addbfcrc.c
  13.  
  14. brik.o:        brik.c brik.h assert.h
  15.         $(CC) $(CFLAGS) brik.c
  16.  
  17. getopt.o:    getopt.c brik.h
  18.         $(CC) $(CFLAGS) getopt.c
  19.  
  20. initcrc.o:    initcrc.c brik.h
  21.         $(CC) $(CFLAGS) initcrc.c
  22.